|
geometric functions |
x-component | X(point) |
y-component | Y(point) |
Distance of two points | Dist(point1,point2) |
Length of a segment | L(segment) |
Radius of a circle | R(circle) |
Measuring angles in degrees | Deg(point1,point2,point3) |
Measuring angles in the radian measure | Rad(point1,point2,point3) |
Parallel-function | Par(line1,line2) |
Orthogonal-function | Ortho(line1,line2) |
Arithmetic operations |
Addition | argument1 + argument2 |
Subtraction | argument1 - argument2 |
Multiplication | argument1 * argument2 |
Division | argument1 / argument2 |
Arithmetic functions |
Natural exponential function | Exp(argument) |
Natural logarithm | Log(argument) |
Exponentiate | Pow(base, exponent)
base^exponent |
Square root | Sqrt(argument) |
Differentiate |
Differentiate | D(expression, variable)
D(expression, {variable, n})
D(expression, variable)/.variable->value
D(expression, {variable, n})/.variable->value |
Integrate |
Integrate | Int(expression, variable)
Int(expression, variable)/.variable->value |
Trigonometric functions |
Arc cosine | ACos(argument) |
Arc sine | ASin(argument) |
Arc tangent | ATan(argument) |
cosine | Cos(argument) |
cotangent | Cot(argument) |
sine | Sin(argument) |
tangent | Tan(argument) |
More functions |
Absolute value | Abs(argument) |
Maximum | Max(argument1, ... , argumentN) |
Minimum | Min(argument1, ... , argumentN) |
Numerical evaluation Auswertung | N(argument) |
Round | Round(argument, n) |
Signum | Sign(argument) |
Truncate | Trunc(zahl) |
Logical operators |
"equal"-Operator | argument1 == argument2 |
"greater than"-Operator | argument1 > argument2 |
"greater than or equal to"-Operator | argument1 >= argument2 |
"lesser"-Operator | argument1 < argument2 |
"lesser than or equal to"-Operator | argument1 <= argument2 |
"unequal"-Operator | argument1 != argument2 |
Logical functions |
Logical UND | And(argument1, ... , argumentN)
argument1 && ... && argumentN |
Logical OR | Or(argument1, ... , argumentN)
argument1 || ... || argumentN |
Condition | If(condition, wahr, falsch) |
constants |
Pi | Pi |
Euler's constant | E |
False | False |
True | True |
Top of Page
|